home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / B / cc_harness < prev    next >
Text File  |  2006-04-25  |  295b  |  13 lines

  1. use Config;
  2.  
  3. $libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE";
  4.  
  5. if (!grep(/^-[cS]$/, @ARGV)) {
  6.     $linkargs = sprintf("%s $libdir/$Config{libperl} %s",
  7.             @Config{qw(ldflags libs)});
  8. }
  9.  
  10. $cccmd = "$Config{cc} $Config{ccflags} -I$libdir @ARGV $linkargs";
  11. print "$cccmd\n";
  12. exec $cccmd;
  13.